home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / netsmart / ns.doc next >
Text File  |  1996-07-10  |  8KB  |  235 lines

  1. Computer Tyme NetSmart * Copyright 1990 by Marc Perkel
  2. All Rights Reserved * Version 1.0 * Release Date: 11-25-90
  3.  
  4. Computer Tyme * 411 North Sherman, Suite 300 * Springfield Mo. 65802
  5. (800) 548-5353 Sales * (417) 866-1222 Voice * (417) 866-1665 Data
  6.  
  7. Price: $95/Server or $995 unlimited.
  8.  
  9. This program helps make network dumb programs run better on a network.
  10. It does this by allowing you to use filenames that contain referrences
  11. to environment variables. These referrences are allowed in BATCH files
  12. but not DOS programs. NetSmart solves this problem.
  13.  
  14. NetSmart also intercepts file access calls and translates compatibility
  15. mode (or network dumb mode) to the more advanced sharing modes. The /L
  16. option allows for liberal translation which could be somewhat dangerous
  17. but is handy for very dumb programs.
  18.  
  19. By it's nature, this program isn't going to work with everything. If
  20. it works, it works. If it doesn't, then don't use it.
  21.  
  22. Usage: NS (/L) <Command Line>
  23. Example:
  24.    SET USERNAME=MARC
  25.    NS XCOPY F:\HOME\%USERNAME%\*.* A:
  26.  
  27. In this example, NS will translate the %USERNAME% into a file name
  28. that DOS can handle.
  29.  
  30. When installing network dumb software, you can use environment variable
  31. referrences for things like path names for configuration files. Thus, a
  32. program that normally only gives you one filename option need not be
  33. installed in every users directory.
  34.  
  35. NS is not exacltly a TSR. It unloads itself each time it is run so
  36. you have to use the NS command each time you use it. This way,
  37. NetSmart only takes up memory with programs that need to use it.
  38.  
  39.       Information and order forms:
  40.  
  41.       ======================================================
  42.  
  43.       The Computer Tyme Dos ToolBox... Makes DOS easier for the novice,
  44.       more powerful for the professional.
  45.  
  46.       DIRECTORY MASTER is a powerful hard disk managment utility. It
  47.       brings up your hard disk files and allows you to mark selected
  48.       files so you can copy them, delete them, or move them. It also
  49.       allows you to rename files, change dates, and change attributes.
  50.       You can also run programs or set up your function keys to run
  51.       programs on selected files.
  52.  
  53.       DOLIST makes being at DOS easier. It gives you full line editing,
  54.       like a word processor, for your commands. It also stores commands
  55.       so that you can re-execute them. It remembers subdirectories and
  56.       allows you to go back to them by pressing the TAB key. It offers
  57.       programmable function keys, DOS extensions, multiple execution,
  58.       and many more features you have got to have.
  59.  
  60.       PICK DIRECTORY allows you to move through the directory system by
  61.       displaying a graphic tree and letting you use your arrow keys to
  62.       move around. It also lets you create, delete, rename, and hide
  63.       directories.
  64.  
  65.       TEDIT (from SemWare) is a powerful, easy to use full screen
  66.       editor.
  67.  
  68.       MARXTSR is a set of memory and TSR management utilities that let
  69.       you load and unload TSRs (Terminate and stay resident programs)
  70.       from memory. Utilities to list menory allocation and turn TSR's
  71.       on and off.
  72.  
  73.       And many more ... Also includes is D, a fancy directory listing
  74.       program; WHEREIS, for finding stuff on you hard disk, SORT, MOVE,
  75.       FIND, FREE, PIPEDIR, VERSION, and many more.
  76.  
  77.       The Dos Toolbox sells for $59.95.
  78.  
  79.       ======================================================
  80.  
  81.       We are also selling QEdit from Semware. QEdit is a professional
  82.       editor from Semware. TEdit is a mini version of QEdit. If you
  83.       like TEdit, You'll love QEdit.
  84.  
  85.       1-800-548-5353 Order Line
  86.       1-417-866-1222 Voice Line
  87.       1-417-866-1665 BBS Data line * 1200/2400 * 8N1 * ANSI or VT100
  88.  
  89.       
  90.       MARXMENU:
  91.  
  92.       For the menu user who is interested in POWER!
  93.  
  94.       MarxMenu version 1.99 is a menu system that uses NO RAM. MarxMenu
  95.       is compatible with all networks and contains a powerful menu
  96.       language. This language gives you complete screen control as well
  97.       as conditional menus. Math and string functions as well as
  98.       multidimensional arrays are supported. MarxMenu can read
  99.       environment variables, ports, ram locations, time, dates, the
  100.       contents of text files, ect. and make decisions on them.
  101.  
  102.       Screen control includes multi-layer exploding windows with
  103.       unlimited number of selections and unlimited windows. 43/50 line
  104.       ega and vga modes are supported. MarxMenu contains a screen
  105.       blanker, password security on anything, keyboard lockout.
  106.       MarxMenu can run programs while staying resident and read the dos
  107.       errorlevel codes they return or marxmenu can return custom
  108.       errorlevel codes to a calling program or batch file. MarxMenu can
  109.       view text files in a window, read text files into an array and
  110.       let you choose a line from that array in a window. MarxMenu can
  111.       write string arrays to text files.
  112.  
  113.       This menu system is targeted at the user whose primary interest
  114.       is POWER! Here is a simple sample of what MarxMenu script looks
  115.       like:
  116.  
  117.       ==========================================
  118.  
  119.       ;This menu is a sample of a simple menu.
  120.       ;To run this menu type 'MARX SAMPLE'
  121.  
  122.       TextColor Yellow Red
  123.       ClearScreen
  124.       BoxBorderColor Green Blue
  125.       BoxInsideColor Yellow Blue
  126.       DrawBox 25 7 32 13
  127.       WriteCenter '* Sample Menu *'
  128.       Writeln
  129.       Writeln
  130.       Writeln '   A - Directory'
  131.       Writeln '   B - Wide Directory'
  132.       Writeln '   C - Run ChkDsk'
  133.       Writeln '   D - Type Menu to Screen'
  134.       Writeln '   E - Edit This Menu'
  135.       Writeln '   F - Drop to Dos'
  136.       Writeln ' Esc - Exit'
  137.       Writeln
  138.       Write ' Select: '
  139.  
  140.       OnKey 'A'
  141.          DIR
  142.          Pause   ;Lets you see the directory before screen clears
  143.  
  144.       Onkey 'B'
  145.          DIR/W
  146.          Pause
  147.  
  148.       OnKey 'C'
  149.          CHKDSK
  150.          Pause
  151.  
  152.       OnKey 'D'
  153.          TYPE SAMPLE.MNU|MORE
  154.          Pause
  155.  
  156.       OnKey 'E'
  157.          TEDIT SAMPLE.MNU
  158.  
  159.       OnKey 'F'
  160.          @Echo To Return to the SAMPLE menu type EXIT
  161.          @Echo .
  162.          COMMAND
  163.  
  164.  
  165.       MarxMenu comes with TEDIT and MARXTSR manager and a few goodies
  166.       out of the DOS ToolBox.
  167.  
  168.       ==========================================
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.         Make Check            Computer Tyme            Order Form 2.7
  182.         Payable To:    411 North Sherman Suite 300
  183.                           Springfield Mo. 65802
  184.                      (417) 866-1222  (800) 548-5353
  185.  
  186.  
  187.         Please send me the Computer Tyme Software.
  188.  
  189.         =============================================================
  190.  
  191.         Name:        ________________________________________________
  192.  
  193.         Address:     ________________________________________________
  194.  
  195.         City/St/Zip: ________________________________________________
  196.  
  197.         Phone:       ________________________________________________
  198.  
  199.         Computer:    ________________________________________________
  200.  
  201.         Got From:    ________________________________________________
  202.  
  203.         Comments:    ________________________________________________
  204.  
  205.                      ________________________________________________
  206.  
  207.                      ________________________________________________
  208.  
  209.  
  210.         ___ Enclosed is $59.95 for The DOS ToolBox.
  211.  
  212.         ___ Enclosed is $59.95 for MarxMenu.
  213.  
  214.         ___ Enclosed is $99.95 for Both.
  215.  
  216.         ___ Enclosed is $49.95 for QEdit (from SemWare).
  217.  
  218.  
  219.         Network licenses are sold on a per fileserver basis.
  220.  
  221.         ___ Enclosed is $495 for The DOS ToolBox network version.
  222.  
  223.         ___ Enclosed is $495 for MarxMenu network version.
  224.  
  225.         ___ Enclosed is $750 for Both network version.
  226.  
  227.  
  228.         ___ Add $3.00 for Shipping and Handling.
  229.  
  230.         ___ I need 3 1/2 Inch Media.
  231.  
  232.  
  233.         =============================================================
  234.  
  235.